Q3Mesh_NextComponentVertex
You can use theQ3Mesh_NextComponentVertex
function to get the next vertex in a mesh component.
TQ3MeshVertex Q3Mesh_NextComponentVertex ( TQ3MeshIterator *iterator);
iterator
- A pointer to a mesh iterator structure.
DESCRIPTION
TheQ3Mesh_NextComponentVertex
function returns, as its function result, the next vertex in the iteration specified by theiterator
parameter, which must have been filled in by a previous call toQ3Mesh_FirstComponentVertex
orQ3Mesh_NextComponentVertex
. If there are no more vertices, this function returnsNULL
.SPECIAL CONSIDERATIONS
TheQ3Mesh_NextComponentVertex
function might not accurately report the next vertex in a mesh component if called while mesh updating is delayed (that is, after a call toQ3Mesh_DelayUpdates
but before the matching call toQ3Mesh_ResumeUpdates
).